home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / ld / testsuite / ld-scripts / sizeof.t < prev   
Encoding:
Text File  |  1996-07-04  |  243 b   |  18 lines

  1. SECTIONS {
  2.     .text :
  3.       {
  4.         text_start = .;
  5.         tmpdir/sizeof.o 
  6.         text_end = .;
  7.       }
  8.     .data : 
  9.       { 
  10.         data_start = .;
  11.         . = . + SIZEOF(.text);
  12.         data_end = .;
  13.       }
  14. }    
  15.  
  16. sizeof_text = SIZEOF(.text);
  17. sizeof_data = SIZEOF(.data);
  18.